home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / emul / cp4 / localize / makelanguage < prev   
AmigaDOS Script File  |  1999-01-01  |  376b  |  18 lines

  1. .KEY LANGUAGE/A
  2. .BRA {
  3. .KET }
  4.  
  5. if {LANGUAGE} eq "english"
  6.  echo English is the builtin language
  7. else
  8. if not exists Translations/{LANGUAGE}
  9.  
  10.   MakeDir Translations/{LANGUAGE}
  11.   Copy Template/#?.ct Translations/{LANGUAGE}
  12.   Util/SetCT CT1 {LANGUAGE} Translations/{LANGUAGE}
  13. else
  14.  echo There's an existing translation drawer,
  15.  echo the Translation/{LANGUAGE} drawer.
  16. endif
  17. endif
  18.